home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Treiber / Turboprintß / tpupdate.script < prev   
Encoding:
Text File  |  2000-01-01  |  1.3 KB  |  37 lines

  1. echo "TPUpdate V7.12beta"
  2. echo "------------------"
  3. echo "This script will update Turboprint 7.10/7.11beta to 7.12beta."
  4. echo "Some older printers (Citizen, Seikosha, Star) will be moved to"
  5. echo "Turboprint:oldprinters. Please reinstall TP7.10 to restore these"
  6. echo "Please read the ReadMe file for changes."
  7. echo ""
  8. echo "You can either update Turboprint on your hard disk"
  9. echo "or update a Turboprint boot disk that has been created"
  10. echo "for use on a system not equipped with a hard disk."
  11. echo "If no Turboprint boot disk is inserted, a Turboprint"
  12. echo "Installation on your hard disk will be updated."
  13. echo ""
  14. ask "Do you want to continue (Y=Yes / N=No)?"
  15. if warn
  16.   echo "Yes"
  17.   copy turbo turboprint:turbo all
  18.   copy printers turboprint:printers all
  19.   copy drivers turboprint:drivers all
  20.   copy colors turboprint:colors all
  21.   copy readme turboprint:
  22.   ;we move some printers as the capacity of Turboprint's printer selector
  23.   ;is limited
  24.   makedir turboprint:oldprinters
  25.   copy turboprint:printers/citizen#? turboprint:oldprinters
  26.   copy turboprint:printers/seikosha#? turboprint:oldprinters
  27.   copy turboprint:printers/star#? turboprint:oldprinters
  28.   delete turboprint:printers/citizen#?
  29.   delete turboprint:printers/seikosha#?
  30.   delete turboprint:printers/star#?
  31.   echo "Patch completed."
  32. else
  33.   echo "No"
  34.   echo "Patch aborted."
  35. endif
  36.  
  37.